home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Power Programmierung 2
/
Power-Programmierung CD 2 (Tewi)(1994).iso
/
c
/
library
/
dos
/
window
/
winclip
/
exam77.c
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1991-03-12
|
366 b
|
14 lines
#include "window.h"
#define NORM CREATE_VIDEO_ATTRIBUTE(black,white)
VWPOINTER vw;
char buf[14] = {0}; /* Null all elements of buf */
main()
{
int i;
WindowInitializeSystem();
WindowSaveInitial(0);
vw = VirtualInitialize(ATTRIBUTE,10,80,NORM);
VirtualReadAttributes(vw,buf,1,1,13); /* Read attributes */
}